home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / dbg / sun3.md / dbgRs232.h.not.used < prev    next >
Text File  |  1989-06-30  |  575b  |  30 lines

  1. /*
  2.  * dbgRs232.h --
  3.  *
  4.  *     Exported types and procedure headers for the rs232 driver.
  5.  *
  6.  * Copyright (C) 1985 Regents of the University of California
  7.  * All rights reserved.
  8.  *
  9.  *
  10.  * $Header: /sprite/src/kernel/dbg/sun3.md/RCS/dbgRs232.h,v 8.1 89/06/29 22:15:46 rab Exp $ SPRITE (Berkeley)
  11.  */
  12.  
  13. #ifndef _DBGRS232
  14. #define _DBGRS232
  15.  
  16. /*
  17.  * Which channel to use.
  18.  */
  19.  
  20. typedef enum {
  21.     DBG_RS232_CHANNELA, 
  22.     DBG_RS232_CHANNELB
  23. } Dbg_Rs232Channel;
  24.  
  25. extern    void        DbgRs232Init();
  26. extern    char         DbgRs232ReadChar();
  27. extern    void         DbgRs232WriteChar();
  28.  
  29. #endif /* _DBGRS232 */
  30.